home *** CD-ROM | disk | FTP | other *** search
/ BCI NET / BCI NET Dec 94.iso / archives / programming / languages / oberon.lha / system / Doc.Tool (.txt) < prev    next >
Oberon Text  |  1994-06-16  |  1KB  |  31 lines

  1. Syntax10.Scn.Fnt
  2. ParcElems
  3. Alloc
  4. Syntax10i.Scn.Fnt
  5. Doc - Document opener    SHML 16 Dec 93
  6. Open files according to their extension with installed open command
  7. Doc.Open ^
  8. Doc.Open    "^" | name
  9.     Open file name according to its extension with installed command.
  10. Doc.Install    "^" | command (extension | "*")
  11.     Install Open command for files with extension (clear old pair).
  12. Doc.Remove    "^" | (extension | "*")
  13.     Remove Open command for files with extension.
  14. Doc.List
  15.     List all command - extension pairs.
  16. Doc.Init
  17.     Clear all installed command - extension pairs.
  18. Examples (typically installed in Configuration.Mod)
  19. Doc.Install Edit.Open Mod
  20. Doc.Install Edit.Open Text
  21. Doc.Install System.Open Tool
  22. Doc.Install Draw.Open Graph
  23. Doc.Install Paint.Open Pict
  24. Doc.Install Browser.ShowDef sym
  25. Doc.Install Edit.Open *        command for files with any or no extension
  26. Doc.Remove Text            remove command for Text files
  27. Doc.Remove *                remove default command
  28. Net.ReceiveFiles Pluto shml:Doc.Tool shml:Doc.obj~
  29. For porters
  30. Net.ReceiveFiles Pluto shml:Doc.Mod~
  31.